| 1 2 3 4 5 6 7 8 9 | 2x 2x 2x 2x 2x 2x 2x | const winston = require('winston');
const mongoose = require('mongoose');
const config = require('config');
module.exports = function() {
const db = config.get('db');
mongoose.connect(db)
.then(() => winston.info(`Connected to ${db}...`));
} |